home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / lib / readline / doc / history.info < prev    next >
Text File  |  1991-07-30  |  18KB  |  515 lines

  1. Info file history.info, produced by Makeinfo, -*- Text -*- from input
  2. file hist.texinfo.
  3.  
  4.    This document describes the GNU History library, a programming tool
  5. that provides a consistent user interface for recalling lines of
  6. previously typed input.
  7.  
  8.    Copyright (C) 1988, 1991 Free Software Foundation, Inc.
  9.  
  10.    Permission is granted to make and distribute verbatim copies of
  11. this manual provided the copyright notice and this permission notice
  12. pare preserved on all copies.
  13.  
  14.    Permission is granted to copy and distribute modified versions of
  15. this manual under the conditions for verbatim copying, provided that
  16. the entire resulting derived work is distributed under the terms of a
  17. permission notice identical to this one.
  18.  
  19.    Permission is granted to copy and distribute translations of this
  20. manual into another language, under the above conditions for modified
  21. versions, except that this permission notice may be stated in a
  22. translation approved by the Foundation.
  23.  
  24. 
  25. File: history.info,  Node: Top,  Next: Using History Interactively,  Prev: (DIR),  Up: (DIR)
  26.  
  27. GNU History Library
  28. *******************
  29.  
  30.    This document describes the GNU History library, a programming tool
  31. that provides a consistent user interface for recalling lines of
  32. previously typed input.
  33.  
  34. * Menu:
  35.  
  36. * Using History Interactively::      GNU History User's Manual.
  37. * Programming with GNU History::  GNU History Programmer's Manual.
  38. * Concept Index::          Index of concepts described in this manual.
  39. * Function and Variable Index::      Index of externally visible functions
  40.                   and variables.
  41.  
  42. 
  43. File: history.info,  Node: Using History Interactively,  Next: Programming with GNU History,  Prev: Top,  Up: Top
  44.  
  45. Using History Interactively
  46. ***************************
  47.  
  48.    This chapter describes how to use the GNU History Library
  49. interactively, from a user's standpoint.  It should be considered a
  50. user's guide.  For information on using the GNU History Library in
  51. your own programs, *note Programming with GNU History::..
  52.  
  53. * Menu:
  54.  
  55. * History Interaction::        What it feels like using History as a user.
  56.  
  57. 
  58. File: history.info,  Node: History Interaction,  Up: Using History Interactively
  59.  
  60. History Interaction
  61. ===================
  62.  
  63.    The History library provides a history expansion feature that is
  64. similar to the history expansion in Csh.  The following text describes
  65. the sytax that you use to manipulate the history information.
  66.  
  67.    History expansion takes place in two parts.  The first is to
  68. determine which line from the previous history should be used during
  69. substitution.  The second is to select portions of that line for
  70. inclusion into the current one.  The line selected from the previous
  71. history is called the "event", and the portions of that line that are
  72. acted upon are called "words".  The line is broken into words in the
  73. same fashion that the Bash shell does, so that several English (or
  74. Unix) words surrounded by quotes are considered as one word.
  75.  
  76. * Menu:
  77.  
  78. * Event Designators::    How to specify which history line to use.
  79. * Word Designators::    Specifying which words are of interest.
  80. * Modifiers::        Modifying the results of susbstitution.
  81.  
  82. 
  83. File: history.info,  Node: Event Designators,  Next: Word Designators,  Up: History Interaction
  84.  
  85. Event Designators
  86. -----------------
  87.  
  88.    An event designator is a reference to a command line entry in the
  89. history list.
  90.  
  91. `!'
  92.      Start a history subsititution, except when followed by a space,
  93.      tab, or the end of the line... = or (.
  94.  
  95. `!!'
  96.      Refer to the previous command.  This is a synonym for `!-1'.
  97.  
  98. `!n'
  99.      Refer to command line N.
  100.  
  101. `!-n'
  102.      Refer to the command line N lines back.
  103.  
  104. `!string'
  105.      Refer to the most recent command starting with STRING.
  106.  
  107. `!?string'[`?']
  108.      Refer to the most recent command containing STRING.
  109.  
  110. 
  111. File: history.info,  Node: Word Designators,  Next: Modifiers,  Prev: Event Designators,  Up: History Interaction
  112.  
  113. Word Designators
  114. ----------------
  115.  
  116.    A : separates the event specification from the word designator.  It
  117. can be omitted if the word designator begins with a ^, $, * or %. 
  118. Words are numbered from the beginning of the line, with the first word
  119. being denoted by a 0 (zero).
  120.  
  121. `0 (zero)'
  122.      The zero'th word.  For many applications, this is the command
  123.      word.
  124.  
  125. `n'
  126.      The N'th word.
  127.  
  128. `^'
  129.      The first argument.  that is, word 1.
  130.  
  131. `$'
  132.      The last argument.
  133.  
  134. `%'
  135.      The word matched by the most recent `?string?' search.
  136.  
  137. `x-y'
  138.      A range of words; `-Y' Abbreviates `0-Y'.
  139.  
  140. `*'
  141.      All of the words, excepting the zero'th.  This is a synonym for
  142.      `1-$'.  It is not an error to use * if there is just one word in
  143.      the event.  The empty string is returned in that case.
  144.  
  145. 
  146. File: history.info,  Node: Modifiers,  Prev: Word Designators,  Up: History Interaction
  147.  
  148. Modifiers
  149. ---------
  150.  
  151.    After the optional word designator, you can add a sequence of one
  152. or more of the following modifiers, each preceded by a :.
  153.  
  154. `#'
  155.      The entire command line typed so far.  This means the current
  156.      command, not the previous command, so it really isn't a word
  157.      designator, and doesn't belong in this section.
  158.  
  159. `h'
  160.      Remove a trailing pathname component, leaving only the head.
  161.  
  162. `r'
  163.      Remove a trailing suffix of the form `.'SUFFIX, leaving the
  164.      basename.
  165.  
  166. `e'
  167.      Remove all but the suffix.
  168.  
  169. `t'
  170.      Remove all leading  pathname  components, leaving the tail.
  171.  
  172. `p'
  173.      Print the new command but do not execute it.
  174.  
  175. 
  176. File: history.info,  Node: Programming with GNU History,  Next: Concept Index,  Prev: Using History Interactively,  Up: Top
  177.  
  178. Programming with GNU History
  179. ****************************
  180.  
  181.    This chapter describes how to interface the GNU History Library with
  182. programs that you write.  It should be considered a technical guide. 
  183. For information on the interactive use of GNU History, *note Using
  184. History Interactively::..
  185.  
  186. * Menu:
  187.  
  188. * Introduction to History::    What is the GNU History library for?
  189. * History Storage::        How information is stored.
  190. * History Functions::        Functions that you can use.
  191. * History Variables::        Variables that control behaviour.
  192. * History Programming Example::    Example of using the GNU History Library.
  193.  
  194. 
  195. File: history.info,  Node: Introduction to History,  Next: History Storage,  Up: Programming with GNU History
  196.  
  197. Introduction to History
  198. =======================
  199.  
  200.    Many programs read input from the user a line at a time.  The GNU
  201. history library is able to keep track of those lines, associate
  202. arbitrary data with each line, and utilize information from previous
  203. lines in making up new ones.
  204.  
  205.    The programmer using the History library has available to him
  206. functions for remembering lines on a history stack, associating
  207. arbitrary data with a line, removing lines from the stack, searching
  208. through the stack for a line containing an arbitrary text string, and
  209. referencing any line on the stack directly.  In addition, a history
  210. "expansion" function is available which provides for a consistent user
  211. interface across many different programs.
  212.  
  213.    The end-user using programs written with the History library has the
  214. benifit of a consistent user interface, with a set of well-known
  215. commands for manipulating the text of previous lines and using that
  216. text in new commands.  The basic history manipulation commands are
  217. similar to the history substitution used by `Csh'.
  218.  
  219.    If the programmer desires, he can use the Readline library, which
  220. includes some history manipulation by default, and has the added
  221. advantage of Emacs style command line editing.
  222.  
  223. 
  224. File: history.info,  Node: History Storage,  Next: History Functions,  Prev: Introduction to History,  Up: Programming with GNU History
  225.  
  226. History Storage
  227. ===============
  228.  
  229.      typedef struct _hist_entry {
  230.        char *line;
  231.        char *data;
  232.      } HIST_ENTRY;
  233.  
  234. 
  235. File: history.info,  Node: History Functions,  Next: History Variables,  Prev: History Storage,  Up: Programming with GNU History
  236.  
  237. History Functions
  238. =================
  239.  
  240.    This section describes the calling sequence for the various
  241. functions present in GNU History.
  242.  
  243.  * Function: void using_history ()
  244.      Begin a session in which the history functions might be used. 
  245.      This just initializes the interactive variables.
  246.  
  247.  * Function: void add_history (CHAR *STRING)
  248.      Place STRING at the end of the history list.  The associated data
  249.      field (if any) is set to `NULL'.
  250.  
  251.  * Function: int where_history ()
  252.      Returns the number which says what history element we are now
  253.      looking at.
  254.  
  255.  * Function: int history_set_pos (INT POS)
  256.      Set the position in the history list to POS.
  257.  
  258.  * Function: int history_search_pos (CHAR *STRING, INT DIRECTION, INT
  259.           POS)
  260.      Search for STRING in the history list, starting at POS, an
  261.      absolute index into the list.  DIRECTION, if negative, says to
  262.      search backwards from POS, else forwards.  Returns the absolute
  263.      index of the history element where STRING was found, or -1
  264.      otherwise.
  265.  
  266.  * Function: HIST_ENTRY *remove_history ();
  267.      Remove history element WHICH from the history.  The removed
  268.      element is returned to you so you can free the line, data, and
  269.      containing structure.
  270.  
  271.  * Function: void stifle_history (INT MAX)
  272.      Stifle the history list, remembering only MAX number of entries.
  273.  
  274.  * Function: int unstifle_history ();
  275.      Stop stifling the history.  This returns the previous amount the
  276.      history was stifled by.  The value is positive if the history was
  277.      stifled, negative if it wasn't.
  278.  
  279.  * Function: int read_history (CHAR *FILENAME)
  280.      Add the contents of FILENAME to the history list, a line at a
  281.      time.  If FILENAME is `NULL', then read from `~/.history'. 
  282.      Returns 0 if successful, or errno if not.
  283.  
  284.  * Function: int read_history_range (CHAR *FILENAME, INT FROM, INT TO)
  285.      Read a range of lines from FILENAME, adding them to the history
  286.      list.  Start reading at the FROM'th line and end at the TO'th.  If
  287.      FROM is zero, start at the beginning.  If TO is less than FROM,
  288.      then read until the end of the file.  If FILENAME is `NULL', then
  289.      read from `~/.history'.  Returns 0 if successful, or `errno' if
  290.      not.
  291.  
  292.  * Function: int write_history (CHAR *FILENAME)
  293.      Append the current history to FILENAME.  If FILENAME is `NULL',
  294.      then append the history list to `~/.history'.  Values returned
  295.      are as in `read_history ()'.
  296.  
  297.  * Function: int append_history (INT NELEMENTS, CHAR *FILENAME)
  298.      Append NELEMENT entries to FILENAME.  The entries appended are
  299.      from the end of the list minus NELEMENTS up to the end of the
  300.      list.
  301.  
  302.  * Function: HIST_ENTRY *replace_history_entry ()
  303.      Make the history entry at WHICH have LINE and DATA.  This returns
  304.      the old entry so you can dispose of the data.  In the case of an
  305.      invalid WHICH, a `NULL' pointer is returned.
  306.  
  307.  * Function: HIST_ENTRY *current_history ()
  308.      Return the history entry at the current position, as determined by
  309.      `history_offset'.  If there is no entry there, return a `NULL'
  310.      pointer.
  311.  
  312.  * Function: HIST_ENTRY *previous_history ()
  313.      Back up HISTORY_OFFSET to the previous history entry, and return a
  314.      pointer to that entry.  If there is no previous entry, return a
  315.      `NULL' pointer.
  316.  
  317.  * Function: HIST_ENTRY *next_history ()
  318.      Move `history_offset' forward to the next history entry, and
  319.      return the a pointer to that entry.  If there is no next entry,
  320.      return a `NULL' pointer.
  321.  
  322.  * Function: HIST_ENTRY **history_list ()
  323.      Return a `NULL' terminated array of `HIST_ENTRY' which is the
  324.      current input history.  Element 0 of this list is the beginning
  325.      of time.  If there is no history, return `NULL'.
  326.  
  327.  * Function: int history_search (CHAR *STRING, INT DIRECTION)
  328.      Search the history for STRING, starting at `history_offset'.  If
  329.      DIRECTION < 0, then the search is through previous entries, else
  330.      through subsequent.  If STRING is found, then `current_history
  331.      ()' is the history entry, and the value of this function is the
  332.      offset in the line of that history entry that the STRING was
  333.      found in.  Otherwise, nothing is changed, and a -1 is returned.
  334.  
  335.  * Function: int history_expand (CHAR *STRING, CHAR **OUTPUT)
  336.      Expand STRING, placing the result into OUTPUT, a pointer to a
  337.      string.  Returns:
  338.  
  339.     `0'
  340.           If no expansions took place (or, if the only change in the
  341.           text was the de-slashifying of the history expansion
  342.           character),
  343.  
  344.     `1'
  345.           if expansions did take place, or
  346.  
  347.     `-1'
  348.           if there was an error in expansion.
  349.  
  350.           If an error ocurred in expansion, then OUTPUT contains a
  351.      descriptive error message.
  352.  
  353.  * Function: char *history_arg_extract (INT FIRST, INT LAST, CHAR
  354.           *STRING)
  355.      Extract a string segment consisting of the FIRST through LAST
  356.      arguments present in STRING.  Arguments are broken up as in the
  357.      GNU Bash shell.
  358.  
  359.  * Function: int history_total_bytes ();
  360.      Return the number of bytes that the primary history entries are
  361.      using.  This just adds up the lengths of `the_history->lines'.
  362.  
  363. 
  364. File: history.info,  Node: History Variables,  Next: History Programming Example,  Prev: History Functions,  Up: Programming with GNU History
  365.  
  366. History Variables
  367. =================
  368.  
  369.    This section describes the variables in GNU History that are
  370. externally visible.
  371.  
  372.  * Variable: int history_base
  373.      For convenience only.  You set this when interpreting history
  374.      commands.  It is the logical offset of the first history element.
  375.  
  376. 
  377. File: history.info,  Node: History Programming Example,  Prev: History Variables,  Up: Programming with GNU History
  378.  
  379. History Programming Example
  380. ===========================
  381.  
  382.    The following snippet of code demonstrates simple use of the GNU
  383. History Library.
  384.  
  385.      main ()
  386.      {
  387.        char line[1024], *t;
  388.        int done = 0;
  389.      
  390.        line[0] = 0;
  391.      
  392.        while (!done)
  393.          {
  394.            fprintf (stdout, "history%% ");
  395.            t = gets (line);
  396.      
  397.            if (!t)
  398.              strcpy (line, "quit");
  399.      
  400.            if (line[0])
  401.              {
  402.                char *expansion;
  403.                int result;
  404.      
  405.                using_history ();
  406.      
  407.                result = history_expand (line, &expansion);
  408.                strcpy (line, expansion);
  409.                free (expansion);
  410.                if (result)
  411.                  fprintf (stderr, "%s\n", line);
  412.      
  413.                if (result < 0)
  414.                  continue;
  415.      
  416.                add_history (line);
  417.              }
  418.      
  419.            if (strcmp (line, "quit") == 0) done = 1;
  420.            if (strcmp (line, "save") == 0) write_history (0);
  421.            if (strcmp (line, "read") == 0) read_history (0);
  422.            if (strcmp (line, "list") == 0)
  423.              {
  424.                register HIST_ENTRY **the_list = history_list ();
  425.                register int i;
  426.      
  427.                if (the_list)
  428.                  for (i = 0; the_list[i]; i++)
  429.                    fprintf (stdout, "%d: %s\n",
  430.                       i + history_base, the_list[i]->line);
  431.              }
  432.            if (strncmp (line, "delete", strlen ("delete")) == 0)
  433.              {
  434.                int which;
  435.                if ((sscanf (line + strlen ("delete"), "%d", &which)) == 1)
  436.                  {
  437.                    HIST_ENTRY *entry = remove_history (which);
  438.                    if (!entry)
  439.                      fprintf (stderr, "No such entry %d\n", which);
  440.                    else
  441.                      {
  442.                        free (entry->line);
  443.                        free (entry);
  444.                      }
  445.                  }
  446.                else
  447.                  {
  448.                    fprintf (stderr, "non-numeric arg given to `delete'\n");
  449.                  }
  450.              }
  451.          }
  452.      }
  453.  
  454. 
  455. File: history.info,  Node: Concept Index,  Next: Function and Variable Index,  Prev: Programming with GNU History,  Up: Top
  456.  
  457. Concept Index
  458. *************
  459.  
  460. * Menu:
  461.  
  462. * event designators:                    Event Designators.
  463. * expansion:                            History Interaction.
  464.  
  465. 
  466. File: history.info,  Node: Function and Variable Index,  Prev: Concept Index,  Up: Top
  467.  
  468. Function and Variable Index
  469. ***************************
  470.  
  471. * Menu:
  472.  
  473. * HIST_ENTRY **history_list:            History Functions.
  474. * HIST_ENTRY *current_history:          History Functions.
  475. * HIST_ENTRY *next_history:             History Functions.
  476. * HIST_ENTRY *previous_history:         History Functions.
  477. * HIST_ENTRY *remove_history:           History Functions.
  478. * HIST_ENTRY *replace_history_entry:    History Functions.
  479. * char *history_arg_extract:            History Functions.
  480. * int append_history:                   History Functions.
  481. * int history_base:                     History Variables.
  482. * int history_expand:                   History Functions.
  483. * int history_search:                   History Functions.
  484. * int history_search_pos:               History Functions.
  485. * int history_set_pos:                  History Functions.
  486. * int history_total_bytes:              History Functions.
  487. * int read_history:                     History Functions.
  488. * int read_history_range:               History Functions.
  489. * int unstifle_history:                 History Functions.
  490. * int where_history:                    History Functions.
  491. * int write_history:                    History Functions.
  492. * void add_history:                     History Functions.
  493. * void stifle_history:                  History Functions.
  494. * void using_history:                   History Functions.
  495.  
  496.  
  497. 
  498. Tag Table:
  499. Node: Top973
  500. Node: Using History Interactively1567
  501. Node: History Interaction2075
  502. Node: Event Designators3127
  503. Node: Word Designators3770
  504. Node: Modifiers4676
  505. Node: Programming with GNU History5425
  506. Node: Introduction to History6152
  507. Node: History Storage7502
  508. Node: History Functions7766
  509. Node: History Variables13063
  510. Node: History Programming Example13499
  511. Node: Concept Index15744
  512. Node: Function and Variable Index16030
  513. 
  514. End Tag Table
  515.